*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*
.price-container{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
*/

/* Option buttons */
.billing__options{
    height: 20vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.billing__options input{
    -webkit-appearance: none;
    display: none;
}

.billing__options .label{
    height: 35px;
    width: 300px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    cursor: pointer;
    max-width: 202px;
    margin: 52px auto 100px;
    padding: 5px 10px;
    border-radius: 50px;
    box-shadow: 1px 1px 6px -3px #000;
}

#year{
    color: #000;
}

.billing__options .label small{
    color:#fff;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.billing__options .label .active{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 3px;
    background-color:#0069ba;
    height: 90%;
    width: 47%;
    border-radius: 50px;
    z-index: -1;
}
.active1{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 3px;
    background-color:#0069ba;
    height: 90%;
    width: 47%;
    border-radius: 50px;
    z-index: -1;

}

h3{
    
}
.subscription .hd{
  
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #000;
}

/* toggle class for javascript */

.billing__options .label.selected #year{
    color: #fff;
}
.billing__options label.selected #month{
    color: #000;
}
.billing__options .label.selected .active{
    left: 105px;
}

/* Price table */
.subscription__options{
    width: 100%;
    max-width: 1160px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    padding: 2rem;
   align-items: start;
}

.subscription{
/*    width: 24%;*/
    box-shadow: 1px 1px 6px -3px #000;
    border-radius: 20px;
    margin-right: 1.3%;
    display: flex;
    flex-direction: column;
/*    padding: 10px;*/
/*    border: solid 1px var(--main-color);*/
}
.subscription{
    /*    width: 24%;*/
        box-shadow: 1px 1px 6px -3px #000;
        border-radius: 20px;
        margin-right: 1.3%;
        display: flex;
        flex-direction: column;
    /*    padding: 10px;*/
    /*    border: solid 1px var(--main-color);*/
    }
.subscription p{
    margin: 5px 0 10px;
    color: var(--main-color);
    letter-spacing: 1px;
}

.subscription small{
    color: #ccc;
}
.text{
    text-align: center;
    display: block;
    margin-bottom: 20px;
    color: #444444;
}
.subscription  p {
    border-top: 1px solid #d6d6d6;
    font-size: 10px;
    padding-top: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 10px;
}
.subscription .btn {
    font-size: 14px;
    background: #0069ba;
    padding: 10px 20px;
}
.pricingList{
    border-top: 1px solid #d6d6d6;
    margin-top: 18px;
    padding-top: 28px;
    padding-left: 30px;
    padding-right: 30px;
    /* font-size: 14px; */
    font-weight: 500;
    color: #000;
    text-align: left;
}
.subscription .price{
        text-align: center;
    color: #000;
    font-weight: bold;
    margin-top: 20px;
    font-size: 46px;
  
}

.price.show__price{
    display: none;
}



.subscription ul li{
    list-style: none;
    line-height: 25px;
}

.subscription button{
    /* margin: 30px 10px 10px; */
    padding: 10px 20px;
    background: none;
    border: solid 1px var(--main-color);
    
    cursor: pointer;
    outline: none;
}



